home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / Chip_2004-10_cd1.bin / software / power / setup.exe / {app} / POWERARC.EXE / 0 / RCDATA / TSEARCHFORM / TSEARCHFORM.txt
Text File  |  2004-04-06  |  2KB  |  118 lines

  1. object SearchForm: TSearchForm
  2.   Left = 284
  3.   Top = 200
  4.   BorderStyle = bsDialog
  5.   Caption = 'Find Archives'
  6.   ClientHeight = 138
  7.   ClientWidth = 313
  8.   Color = clBtnFace
  9.   ParentFont = True
  10.   KeyPreview = True
  11.   OldCreateOrder = True
  12.   Scaled = False
  13.   OnClose = FormClose
  14.   OnCreate = FormCreate
  15.   OnKeyPress = FormKeyPress
  16.   OnShow = FormShow
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Label1: TLabel
  20.     Left = 8
  21.     Top = 4
  22.     Width = 220
  23.     Height = 60
  24.     AutoSize = False
  25.     Caption = 
  26.       'PowerArchiver can automatically find ZIP files on your computer,' +
  27.       ' or you can manually select a file to extract.'
  28.     WordWrap = True
  29.   end
  30.   object Label2: TElLabel
  31.     Left = 8
  32.     Top = 136
  33.     Width = 289
  34.     Height = 13
  35.     AutoSize = False
  36.   end
  37.   object Label3: TElLabel
  38.     Left = 7
  39.     Top = 160
  40.     Width = 289
  41.     Height = 13
  42.     AutoSize = False
  43.   end
  44.   object SAll: TRadioButton
  45.     Left = 8
  46.     Top = 64
  47.     Width = 201
  48.     Height = 17
  49.     Caption = '&Search this PC for ZIP files'
  50.     TabOrder = 0
  51.   end
  52.   object SDisk: TRadioButton
  53.     Left = 8
  54.     Top = 88
  55.     Width = 121
  56.     Height = 17
  57.     Caption = 'Search only &drive:'
  58.     TabOrder = 1
  59.     OnClick = SDiskClick
  60.   end
  61.   object SMan: TRadioButton
  62.     Left = 8
  63.     Top = 112
  64.     Width = 201
  65.     Height = 17
  66.     Caption = '&Manually select ZIP file'
  67.     TabOrder = 3
  68.   end
  69.   object ComboBox1: TComboBox
  70.     Left = 136
  71.     Top = 86
  72.     Width = 57
  73.     Height = 21
  74.     Style = csDropDownList
  75.     ItemHeight = 13
  76.     TabOrder = 2
  77.   end
  78.   object Button1: TButton
  79.     Left = 232
  80.     Top = 8
  81.     Width = 75
  82.     Height = 25
  83.     Caption = 'OK'
  84.     Default = True
  85.     TabOrder = 4
  86.     OnClick = Button1Click
  87.   end
  88.   object Button2: TButton
  89.     Left = 232
  90.     Top = 40
  91.     Width = 75
  92.     Height = 25
  93.     Caption = '&Cancel'
  94.     TabOrder = 5
  95.     OnClick = Button2Click
  96.   end
  97.   object Button3: TButton
  98.     Left = 232
  99.     Top = 72
  100.     Width = 75
  101.     Height = 25
  102.     Caption = '&Help'
  103.     TabOrder = 6
  104.     OnClick = Button3Click
  105.   end
  106.   object SelFileBox: TAgOpenDialog
  107.     Filter = 
  108.       'All archives, Encoded files|*.zip;*.jar;*.pk3;*.rar;*.lha;*.lzh;' +
  109.       '*.arj;*.arc;*.zoo;*.ace;*.cab;*.bh;*.tar;*.gz;*.tgz;*.bz;*.bz2;*' +
  110.       '.tbz;*.enc;*.xxe;*.uue;*.z;*.b64;*.uu;*.mim'
  111.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist, ofEnableSizing]
  112.     Title = 'PowerArchiver - Select Archive'
  113.     ShowPlacesBar = True
  114.     Left = 153
  115.     Top = 63
  116.   end
  117. end
  118.